home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / libldap-2.4-2.postinst < prev    next >
Encoding:
Text File  |  2011-06-15  |  289 b   |  16 lines

  1. #!/bin/sh
  2. #
  3. # Run ldconfig after installing the shared library.  We have to do this
  4. # manually rather than letting dh_makeshlibs deal with it because
  5. # dh_makeshlibs can't cope with the trick we're pulling with libldap_r.
  6.  
  7. set -e
  8.  
  9. if [ "$1" = "configure" ]; then
  10.     ldconfig
  11. fi
  12.  
  13.  
  14.  
  15. exit 0
  16.